home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
HENSA
/
MATHS
/
PLPLOT
/
PLPLOT.ZIP
/
scripts
/
fixfort
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
AWK Script
|
1994-04-08
|
283 b
|
11 lines
#!/usr/bin/awk -f
#
# File: fixfile
# Usage: fixfort oldfile.f >newfile.f
#
# Very simple awk program to remove bang comments from Fortran files.
# Shouldn't be necessary very often: most Fortran compilers started
# supporting bang comments in the early 80's.
#
$1 != "!" { print }